added SSCLI 1.0
[windows-sources.git] / shared source / sscli20 / tools / resourcecompiler / rc.h
blobd626a3505f94a9f56c50aefc21065ded3c5518cf
1 // ==++==
2 //
3 //
4 // Copyright (c) 2006 Microsoft Corporation. All rights reserved.
5 //
6 // The use and distribution terms for this software are contained in the file
7 // named license.txt, which can be found in the root of this distribution.
8 // By using this software in any fashion, you are agreeing to be bound by the
9 // terms of this license.
10 //
11 // You must not remove this notice, or any other, from this software.
12 //
13 //
14 // ==--==
15 /*============================================================
17 ** File: rc.h
19 ** Purpose: Header file for Resource Compiler
21 ===========================================================*/
23 #ifndef __RC_H__
24 #define __RC_H__
26 #include <process.h>
27 #include <assert.h>
28 #include <ctype.h>
29 #include <stdio.h>
30 #include <stddef.h>
31 #include <stdlib.h>
32 #include <limits.h>
33 #include <string.h>
34 #include <time.h>
36 typedef struct _STRING_TABLE_ENTRY{
37 UINT StringID;
38 UINT StringLen;
39 LPSTR StringValue;
41 } STRING_TABLE_ENTRY, *PSTRING_TABLE_ENTRY;
43 #endif /* __RC_H__ */